home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / wp / breeze54.zip / DOSSTART.DOC < prev    next >
Text File  |  1992-08-09  |  4KB  |  92 lines

  1.  
  2.  
  3.                             - STARTING WITH DOS -
  4.  
  5.                                   A primer
  6.  
  7.  
  8.         What is DOS?
  9.  
  10.              DOS is shorthand for Disk Operating System.  DOS is the
  11.         go-between for the transactions between you and the computer.
  12.         DOS works in the background taking care of the menial computer
  13.         tasks you wouldn't want to have to think about.
  14.  
  15.  
  16.         Some DOS commands
  17.  
  18.              You can give commands to DOS by typing commands at the DOS
  19.         command line; in other words, immediately after the DOS prompt.
  20.         Your DOS prompt probably looks like one of the following:
  21.  
  22.              A>
  23.              B>
  24.              C>
  25.  
  26.              The capital letter refers to the active disk drive.  If the
  27.         prompt is A> then the commands you give DOS will refer to that
  28.         drive.  When you want to switch to another disk, making it the
  29.         active disk, all you do is type the letter of the disk, followed
  30.         by a colon and press ENTER.  For example, to switch to drive B,
  31.         just type
  32.  
  33.               B:  (then press ENTER)
  34.  
  35.              There are a few commands you will use often with DOS, if
  36.         you haven't already, such as:
  37.  
  38.               DEL or ERASE   To erase a file
  39.               DIR            To see a list of files on the logged drive.
  40.               COPY           To copy the files from one disk to another.
  41.               BREEZE         To load BREEZE
  42.  
  43.               DOS doesn't care whether you type in uppercase or
  44.         lowercase letters, so you can enter your commands however you
  45.         like.
  46.  
  47.                I will assume you know how to use the first three
  48.         commands listed; if you don't, then refer to your DOS manual.
  49.         Next, I will explain the proper way to load a program like
  50.         BREEZE.
  51.  
  52.  
  53.         How to load a program
  54.  
  55.                If your distribution disk with the BREEZE.EXE program is
  56.         in drive A but the prompt you see on the screen is B>, DOS won't
  57.         know what your talking about if you type BREEZE and press Enter.
  58.         Instead of starting BREEZE, it will give you the message "Bad
  59.         command or file name", because it is searching in the wrong
  60.         place.  So if you happen to get that DOS message, simply switch
  61.         to drive A by typing A: and then press Enter.  Then type BREEZE
  62.         and press Enter to load BREEZE.
  63.  
  64.  
  65.  
  66.         Directories
  67.  
  68.                A directory is a convenient way to organize your floppy
  69.         and more particularly your hard disk drive files.  It is a way
  70.         of grouping related files together under a common heading and in
  71.         the same place.
  72.  
  73.                It would be convenient to keep all your BREEZE files on
  74.         one or two floppy disks, or on a hard drive you could hold them
  75.         all in a directory called BREEZE.
  76.  
  77.                To make a directory for your BREEZE files on a hard disk
  78.         (assuming it is Drive C:), do the following:
  79.  
  80.             1. At the C> prompt, type MKDIR BREEZE and press Enter.
  81.  
  82.             2. Type CHDIR BREEZE and press Enter.  This tells DOS to
  83.                move you into the BREEZE directory.
  84.  
  85.             3. Now put the BREEZE distribution disk into drive A and
  86.                type COPY A:*.*   and then press Enter.  (The
  87.                asterisks are wildcards that stand for all files.)
  88.                This will copy all the files on the disk in drive A to
  89.                the directory BREEZE on drive C:
  90.  
  91.  
  92.